Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export dialog tabs #51

Merged
merged 7 commits into from
Apr 30, 2021
Merged

Export dialog tabs #51

merged 7 commits into from
Apr 30, 2021

Conversation

jrz371
Copy link
Collaborator

@jrz371 jrz371 commented Apr 9, 2021

Resolves #44
Resolves #45
Resolves #49
Resolves #28

Hopefully I didn't bundle too much in this one PR. I save the settings through the plugin settings. I had to tweak the export settings to make a bit more sense. Since the binary flag is inferred from extension, I moved it out of the settings to its own parameter that's passed in. This way the export settings are purely about the data conversion. The export materials and display color options weren't a huge change, but should be verified. Most of the options for exporting the meshes #46, #47, and #48 require #29 as a prerequisite which I'll get to working next.

Copy link
Collaborator

@Doerge Doerge left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks a bit funky here, but the export works great, and this is a really nice cleanup at the same time!
Screenshot 2021-04-30 at 15 41 53

@@ -4,7 +4,7 @@ namespace glTF_BinExporter
{
public static class Constants
{
public static ObjectType[] ValidObjectTypes = new ObjectType[] {
public static readonly ObjectType[] ValidObjectTypes = new ObjectType[] {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💎

@@ -90,26 +94,26 @@ public Gltf ConvertToGltf()

var sanitized = GlTFUtils.SanitizeRhinoObjects(objects);

foreach(Tuple<Rhino.Geometry.Mesh[], Rhino.DocObjects.Material, Guid, RhinoObject> tuple in sanitized)
foreach(ObjectExportData exportData in sanitized)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sooo much better!

@Doerge Doerge merged commit f109be5 into Stykka:master Apr 30, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants